home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / auto1.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.8 KB  |  52 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //----------------------------------------------------------------------------
  6. #ifndef Auto1H
  7. #define Auto1H
  8. //----------------------------------------------------------------------------
  9. #include <ComObj.hpp>
  10. #include <StdCtrls.hpp>
  11. #include <Dialogs.hpp>
  12. #include <Forms.hpp>
  13. #include <Controls.hpp>
  14. #include <Graphics.hpp>
  15. #include <Classes.hpp>
  16. #include <ExtCtrls.hpp>
  17. //----------------------------------------------------------------------------
  18. class TForm1 : public TForm
  19. {
  20. __published:
  21.     TEdit *Edit1;
  22.     TButton *setvalB;
  23.     TButton *getvalB;
  24.     TButton *clearB;
  25.     TLabel *Label1;
  26.     TButton *functionB;
  27.     TButton *setvalA;
  28.     TButton *getvalA;
  29.     TButton *clearA;
  30.     TButton *functionA;
  31.     TLabel *Label2;
  32.     TLabel *Label3;
  33.     void __fastcall setvalDClick(TObject *Sender);
  34.     void __fastcall getvalDClick(TObject *Sender);
  35.     void __fastcall clearDClick(TObject *Sender);
  36.     
  37.     void __fastcall functionDClick(TObject *Sender);
  38.     void __fastcall setvalVClick(TObject *Sender);
  39.     void __fastcall functionVClick(TObject *Sender);
  40.     void __fastcall clearVClick(TObject *Sender);
  41.     void __fastcall getvalVClick(TObject *Sender);
  42. private: 
  43.     IEditServerDisp AutoServer; //IDispatch method of binding
  44.     TCOMIEditServer EditServer; //VTable method of binding
  45. public:
  46.     virtual __fastcall TForm1(TComponent *Owner);
  47. };
  48. //----------------------------------------------------------------------------
  49. extern TForm1 *Form1;
  50. //----------------------------------------------------------------------------
  51. #endif    
  52.